home *** CD-ROM | disk | FTP | other *** search
/ Die Speccy' 97 / Die Speccy' 97.iso / amiga_system / the_aminet / comm / tcp / mufs_telnetd.lha / telnetd2_0.lha / telnetd-2.0 / source / fakesr / test / makefile next >
Makefile  |  1995-01-15  |  398b  |  23 lines

  1. CC = lc
  2. CCOPTS = -ccfis -v -y -d5 -i/
  3. ASM = asm
  4. ASMOPTS = -ilattice:asmhead/ -u
  5. LINK = BLINK
  6. LINKOPTS = ADDSYM BATCH
  7. TARGET = testfakesr
  8. OBJECTS = testfakesr.o
  9. LIBS = lib:lc.lib lib:amiga.lib
  10.  
  11. $(TARGET) : $(OBJECTS)
  12.     $(LINK) $(LINKOPTS) FROM lib:c.o $(OBJECTS) TO $(TARGET) LIB $(LIBS)
  13.  
  14. .a.o: 
  15.     $(ASM) $(ASMOPTS) $<
  16.  
  17. .c.o: 
  18.     $(CC) $(CCOPTS) $<
  19.  
  20.  
  21. # dependencies
  22. testfakesr.o: testfakesr.c /fakesr.h
  23.